:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #ffc107;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif !important;
    background-color: #f9fafb;
    color: #374151;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Container max-width to match Tailwind's max-w-7xl */
.container {
    max-width: 1280px !important;
}

/* Navbar Styles */
.navbar-area {
    position: fixed;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-area.sticky {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 0;
    height: 80px;
    align-items: center;
    display: flex;
}

.navbar-brand img {
    height: 48px;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-item {
    margin: 0 1rem;
    padding: 0;
}

.navbar-nav .page-scroll {
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding-bottom: 0.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.navbar-area.sticky .navbar-nav .page-scroll {
    color: #374151;
}

.navbar-nav .page-scroll:hover {
    color: var(--accent-color);
    text-decoration: none;
    transform: translateY(-1px);
}

.navbar-area.sticky .navbar-nav .page-scroll:hover {
    color: var(--primary-color);
}

.navbar-nav .page-scroll.active {
    color: var(--accent-color);
    text-decoration: none;
}

.navbar-area.sticky .navbar-nav .page-scroll.active {
    color: var(--primary-color);
}

.navbar-nav .page-scroll.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* Gradient Background */
.gradient-bg {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* Buttons */
.btn-gradient {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-left: 0.75rem;
    backdrop-filter: blur(8px);
}

.navbar-area.sticky .btn-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.3);
    color: white !important;
}

.navbar-area.sticky .btn-gradient:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    color: white !important;
    cursor: pointer;
}

.btn-white {
    background: white;
    color: var(--primary-color) !important;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-white:hover {
    background: var(--accent-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
}

/* Text Colors */
.text-primary-custom {
    color: var(--primary-color);
}

.text-accent {
    color: var(--accent-color);
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-900 {
    color: #111827;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #4b5563;
    line-height: 1.625;
}

/* Section Titles */
.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.section-title p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.75rem;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: scale(1.05);
    position: relative;
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured li {
    color: white !important;
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.badge-recommended {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
}

.pricing-card li {
    padding: 0.25rem 0;
    color: #4b5563;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 6rem;
    right: calc(2rem + 4px);
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
    line-height: 1;
}

.scroll-top i {
    line-height: 1;
}

.scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    color: white;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s;
    font-size: 1.5rem;
    text-decoration: none;
    line-height: 1;
}

.whatsapp-float i {
    line-height: 1;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    color: white;
}

/* Hero Animation */
.hero-img {
    animation: float 6s ease-in-out infinite;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Hero Section */
.hero-section {
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.hero-section h4 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section h1 {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section h4 {
        font-size: 1.25rem;
    }

    .navbar-nav .nav-item {
        margin: 0.5rem 0;
    }
}

/* Sections Spacing */
.pt-120 {
    padding-top: 7.5rem;
}

.pb-120 {
    padding-bottom: 7.5rem;
}

.pt-100 {
    padding-top: 6.25rem;
}

.pb-100 {
    padding-bottom: 6.25rem;
}

.mb-60 {
    margin-bottom: 3.75rem;
}

/* Footer */
footer {
    background: #1a1a2e;
    padding: 1.5rem 0 0.75rem;
}

footer h3 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
    text-decoration: none;
    font-size: 0.9rem;
}

footer a:hover {
    color: var(--primary-color);
}

footer .socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    margin-right: 0.5rem;
}

footer .socials a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* About Images */
.about-img img {
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Smooth transitions */
a,
button {
    transition: all 0.3s ease;
}

/* Mobile Menu */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        background: white;
        border-top: 1px solid #e5e7eb;
        margin-top: 0.5rem;
        padding: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navbar-collapse.show .navbar-nav .page-scroll,
    .navbar-collapse.collapsing .navbar-nav .page-scroll {
        color: #374151;
    }

    .navbar-area.sticky .navbar-toggler {
        color: #374151;
    }
}

.navbar-toggler {
    border: none;
    background: none;
    padding: 0.5rem;
    color: #ffffff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.navbar-area.sticky .navbar-toggler {
    color: #374151;
}

.navbar-toggler:hover {
    color: var(--accent-color);
}

.navbar-area.sticky .navbar-toggler:hover {
    color: var(--primary-color);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #374151;
    border-radius: 0.5rem;
    transition: all 0.3s;
    text-decoration: none;
}

.mobile-nav-link:hover {
    background: var(--primary-color);
    color: white !important;
}

.mobile-nav-link.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white !important;
}